home *** CD-ROM | disk | FTP | other *** search
- /*
- * from K&R "The C Programming language"
- * Table lookup routines
- * structure and definitions
- *
- */
-
- /* basic table entry */
- struct hashlist {
- char *name;
- char *def;
- struct hashlist *next; /* next in chain */
- };
-
- #define HASHMAX 100 /* size of hashtable */
-
- /* hash table itself */